home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 July / Macworld (1999-07).dmg / Serious Software / OpenWorld demo 2.0 / OpenWorld plug-ins / AppleScript / Big File next >
Text File  |  1999-04-28  |  146b  |  7 lines

  1. set mySize to [file size?null]
  2.  
  3. if mySize > 1024 then
  4.     return "Wow! this is a big file, bigger then 1K"
  5. else
  6.     return "This is a small file"
  7. end if